4c8fe2cc673e138ce461a9592200af9da15f9dc0,source_gen/jetbrains/mps/baseLanguage/editor/ReturnStatement_Editor.java,ReturnStatement_Editor,createExpressionCell,#EditorContext#SemanticNode#,35
Before Change
} else {
editorCell = EditorCell_Error.create(editorContext, node, null);
}
ReturnStatement_ExpressionCellActions.setCellActions(editorCell, node);
return editorCell;
}
public EditorCell createConstantCell1(EditorContext editorContext, SemanticNode node, String text) {
After Change
EditorCell editorCell = null;
if(expression != null) {
editorCell = this.nodeCell(editorContext, expression);
ReturnStatement_ExpressionCellActions.setCellActions(editorCell, node);
} else {
editorCell = EditorCell_Error.create(editorContext, node, null);
ReturnStatement_ExpressionCellActions.setCellActions(editorCell, node);
_DefErrorActions.setCellActions(editorCell, node);
}
return editorCell;